home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / Meshwriter_lib / Library / include / meshwriter / meshwriterbase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  590 b   |  31 lines

  1. /*
  2. **      $VER: meshwriterbase.h 0.2 (28.3.99)
  3. **
  4. **      definition of MeshWriterBase
  5. **
  6. **      Stephan Bielmann
  7. */
  8.  
  9. #ifndef MESHWRITER_MESHWRITERBASE_H
  10. #define MESHWRITER_MESHWRITERBASE_H
  11.  
  12. #ifdef   __MAXON__
  13. #ifndef  EXEC_LIBRARIES_H
  14. #include <exec/libraries.h>
  15. #endif
  16. #else
  17. #ifndef  EXEC_LIBRARIES
  18. #include <exec/libraries.h>
  19. #endif /* EXEC_LIBRARIES_H */
  20. #endif
  21.  
  22. struct MeshWriterBase
  23. {
  24.  struct Library         mwb_LibNode;
  25.  SEGLISTPTR             mwb_SegList;
  26.  struct ExecBase       *mwb_SysBase;
  27.  struct UtilityBase    *mwb_UtilityBase;
  28. };
  29.  
  30. #endif /* MESHWRITER_MESHWRITERBASE_H */
  31.